home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / irccol1a / form1.frm < prev    next >
Text File  |  1998-10-08  |  2KB  |  67 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    BackColor       =   &H80000008&
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   6795
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   11355
  9.    BeginProperty Font 
  10.       Name            =   "Terminal"
  11.       Size            =   9
  12.       Charset         =   255
  13.       Weight          =   400
  14.       Underline       =   0   'False
  15.       Italic          =   0   'False
  16.       Strikethrough   =   0   'False
  17.    EndProperty
  18.    LinkTopic       =   "Form1"
  19.    ScaleHeight     =   453
  20.    ScaleMode       =   3  'Pixel
  21.    ScaleWidth      =   757
  22.    StartUpPosition =   3  'Windows Default
  23.    WindowState     =   2  'Maximized
  24. End
  25. Attribute VB_Name = "Form1"
  26. Attribute VB_GlobalNameSpace = False
  27. Attribute VB_Creatable = False
  28. Attribute VB_PredeclaredId = True
  29. Attribute VB_Exposed = False
  30. ' dont just rip me off! give me some help if ya can
  31. ' Not going into the technaclitys of this its To Difficult to explian.
  32. 'Email :familae@familae.screaming.net
  33.  
  34. Private Irc_Window As New ChanWindow
  35.  
  36. Private Sub Form_Click()
  37.  
  38. Close #1
  39. Open "C:\torment\txt\DRAGON.txt" For Input As #1
  40. Dim data As String
  41. Do
  42.  
  43. Line Input #1, data
  44. Irc_Window.Out Trim(data)
  45. Irc_Window.ScrWindowup Me, 15
  46. DoEvents
  47. Loop While Not EOF(1)
  48.  
  49.  
  50.  
  51. Irc_Window.ScrWindowup Me, 20
  52. Irc_Window.Out "4,0Hello7 This is a MIRC Complient Text Parser7 :) P7l12e7a12s7e 15H12e15l12p 15M12e 12m15a12k15e 12i15t 12I15n12t15o 12a 15S12c15r12o15l12l15a12b15l12e 15T12e15x12t 15B12o15x 12?"
  53. Irc_Window.ScrWindowup Me, 27
  54.  
  55. End Sub
  56.  
  57. Private Sub Form_Load()
  58. Set Irc_Window.OwnerForm = Form1
  59.  
  60.  
  61.  
  62. End Sub
  63.  
  64. Private Sub Form_Paint()
  65. Irc_Window.Refresh
  66. End Sub
  67.